home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / splint.zip / MAKEFILE < prev    next >
Text File  |  1993-05-19  |  314b  |  17 lines

  1. MODEL=S
  2. CFLAGS = -Ox
  3. #debugging
  4. #CFLAGS =-Od
  5. #CFLAGS =-DDEBUG
  6.  
  7. SPLOBJS= splay.obj splint.obj getopt.obj
  8.  
  9. all : splint.exe
  10.  
  11. splint.exe : $(SPLOBJS)
  12.     cl -A$(MODEL) $(CFLAGS) -Fesplint -l/NOE $(SPLOBJS) \usr\lib\setargv.obj
  13.  
  14. splay.obj : splint.h
  15. getopt.obj : getopt.h 
  16. splint.obj : getopt.h splint.h
  17.